CodingForums

ساخت وبلاگ
How do I debug and trace HTML code process of submit in input tag?
i.e how to analyze consequence of the code
<input type=”submit” role="button" … >
CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 185 تاريخ : پنجشنبه 30 آذر 1396 ساعت: 23:15

Hello, I have a site at www.picklesadventures.co.uk which was created before mobile sites were really a 'thing'. All my other sites were basic blog types and cost next to nothing to created mobile versions of. I've had quotes for this ranging from £50 to £750.

Am I being scammed at such high quotes? Or are the lower quotes completely underestimating what needs to be done?
CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 152 تاريخ : پنجشنبه 30 آذر 1396 ساعت: 23:15

Hi there,

I know very little about programming, only that I believe JavaScript is what is needed for this project.

Background information
I want to make a calendar-clock, with day, month, and year. I call it a clock because it operates so quickly: a day takes about 22 minutes, a year takes 1 week. Our calendar-clock has been used for a roleplaying game, where we started in 1503, and are currently in 1513.

Even if I posted this in the incorrect forum, would someone point me in the right direction?

Thanks very much.
CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 168 تاريخ : پنجشنبه 30 آذر 1396 ساعت: 23:15

Hello I am hoping to add a Twitter feed to a Web page, but can only find an outdated article on how to do it. I am in Twitter at the moment and can see this (please see attached). The feed will be placed in a web page similar to this (on the right and undeeath 'welcome to my site'): home and with a similar colour scheme. what should I be pressing on the Twitter site, please? Thanks. Attached Thumbnails   CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 132 تاريخ : پنجشنبه 30 آذر 1396 ساعت: 23:15

Hello Complete beginner - trying to send quiz results to server using php script below from ispring solutions/quizresults from Github. (without success). I've uploaded all the files/directories to my server into a directory called QuizResults. Could someone please tell me which bits of the index.php script (below) I need to modify? Any help gratefully received. Thanks very much Nyree <?php header('Access-Control-Allow-Origin: *'); if ($_SERVER['REQUEST_METHOD'] != 'POST') { echo "POST request expected"; retu; } error_reporting(E_ALL && E_WARNING && E_NOTICE); ini_set('display_errors', 0); ini_set('log_errors', 1); require_once 'includes/common.inc.php'; $requestParameters = RequestParametersParser::getRequestParameters($_POST, !empty($HTTP_RAW_POST_DATA) ? $HTTP_RAW_POST_DATA : null); _log($requestParameters); try { $quizResults = new QuizResults(); $quizResults->InitFromRequest($requestParameters); $generator = QuizReportFactory::CreateGenerator($quizResults, $requestParameters); $report = $generator->createReport(); $dateTime = date('Y-m-d_ CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 178 تاريخ : پنجشنبه 30 آذر 1396 ساعت: 23:15

Code: #include <Servo.h>; Servo servoPlough; Servo servoWatersystem; int servoPos = 0; int soundSystem = 2; int Lights = 22; int VibrationSeeding1 = 23; int VibrationSeeding2 = 24; int Motor1 = 25; int Motor2 = 26; int Motor3 = 27; int Motor4 = 28; int Switch = 29; Void setup(); servoPlough.attach(1); servoWatersystem.attach(2); pinMode (sound, output); pinMode (Lights, output); pinMode (VibrationSeeding1, output); pinMode (VibrationSeeding2, output); pinMode (Motor1, output); pinMode (Motor2, output); pinMode (Motor3, output); pinMode (Motor4, output); pinMode (Switch, input); Void loop (); { digitalRead(switch) = X; If(x == HIGH); digitalWrite(Lights, HIGH); digitalWrite(sound, HIGH); delay(200); digitalWrite(sound, LOW); delay(400); digitalWrite(sound, HIGH); delay(150); digitalWrite(sound, LOW); delay(300); digitalWrite(sound, HIGH); delay(100); digitalWrite(sound, LOW); delay(200); digitalWrite(sound, HIGH); delay(100); digtalWrite(sound, LOW); delay(50); digitalWrite(sound, HIGH); delay(100); digitalWrite(sound, LOW);  Delay (1000); ServoPlough.write(75); Delay (500); digitalWrite (Motor1, HIGH); digitalWrite (Motor2, HIGH); digitalWrite (Motor3, HIGH); digi CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 188 تاريخ : پنجشنبه 30 آذر 1396 ساعت: 23:15

In Python, I can get the length of a rundown by calling its __len__ strategy. __len__ isn't characterized on every individual rundown protest, however on the rundown class. The technique can be gotten to straightforwardly through the class: >>> [].__len__() 0 >>> type([]) <class 'list'> >>> list.__len__([]) 0 Be that as it may, the comparable code does not work in Ruby: > [].length => 0 > [].class => Array > Array.length([]) NoMethodError: vague strategy `length' for Array:Class For what reason can the length strategy not be discovered when utilizing Array.length? Does strategy query in Ruby work uniquely in contrast to Python? CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 179 تاريخ : پنجشنبه 30 آذر 1396 ساعت: 23:15

I have reasently switched my databse from MyiSam to innoDB because of access to foreign keys (I have about 150 tables where most of them are referencing each other and foreign keys just makes my life so much easier) One problem though - it broke my FULLTEXT searches and a search like: PHP Code: SELECT      date ,      useame ,      bio ,      randomString ,  FROM      userlogininfo  WHERE      MATCH ( useame , bio ) AGAINST ( ? IN BOOLEAN MODE )  ORDER BY      date DESC  giving a list of users matching the search criteria in ? now throws a "#1191 - Can't find FULLTEXT index matching the column list" And both useame (TEXT) and bio (TEXT) has FULLTEXT indexes Allthough a: PHP Code: SHOW INDEX FROM userlogininfo;  shows that not only does both useame and bio have FULLTEXT indexes, but so do useame_2 and bio_2 (none of which are named columns in the t CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 184 تاريخ : پنجشنبه 30 آذر 1396 ساعت: 23:15

Hello

How can I move this Twitter feed here twitter about 10px to the left, please?

I know it can normally bemoved by changing the margin or introducing padding, but does that apply to the Twitter
script:

Code:

<a class="twitter-timeline" data-lang="en" data-width="450" data-height="1050" data-theme="dark" href="https://twitter.com/TwitterDev/lists/national-parks?ref_src=twsrc%5Etfw">A Twitter List by TwitterDev</a> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
Thank you.
CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 127 تاريخ : پنجشنبه 30 آذر 1396 ساعت: 23:15

Hi all,

I am looking for a client / room management system that will allow me to keep client records and assign them to specific rooms. Would also be handy to upload documents to the clients record.

Does anyone have any suggestions please?

Thanks.
CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 136 تاريخ : پنجشنبه 30 آذر 1396 ساعت: 23:15

I converted a PDF to HTML. Now I am trying to add a header to it so it matches the rest of the site and doesn't lose the navigation buttons.

when the page loads, you can see the header load ... background, logo, and 9 navigation buttons.

Then, they get covered by the PDF and become invisible.

I've tried line breaks, page breaks, div page-breaks, paragraph breaks ... anything I could think of or find, and the problem doesn't change.

I'll include a link so you can see what I mean.

Anyone have any ideas?

North East Stock Car Old Timers Newsletter
CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 166 تاريخ : پنجشنبه 30 آذر 1396 ساعت: 23:15

So, i try to make a file where it should enable me to upload an excel file into mysql database, while i'm making the file, this file encounter one syntax error(this file is used to read the excel file). the error says: Parse error: syntax error, unexpected 'new' (T_NEW) in excel-reader.php on line 869 i have research about this beforehand, and the solution seems to be simple, where i just need to remove the "&" symbol from the code. the problem is, even after i remove the symbol, the error still there and didn't solved yet. so is there anything that i do wrong here? thanks for your attention here is code before i edit it: Code: function Spreadsheet_Excel_Reader($file='',$store_extended_info=true,$outputEncoding='') {                 $this->_ole =&new OLERead();                 $this->setUTFEncoder('iconv');                 if ($outputEncoding != '') {                         $this->setOutputEncoding($outputEncoding);                 CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 270 تاريخ : پنجشنبه 30 آذر 1396 ساعت: 23:15

I'm trying to make a simple ball move with the arrow keys in javascript on my webpage. I want to add an if statement testing for a key being pressed then inside that another if statement for the key code. I've want to use keydown, keyup, keypressed inside the if but those don't work. Is there anyway to get those to work within an if statement. Are there different things I can do that may work? This is what I tried: Code: <!DOCTYPE html> <html>         <head>                 <meta charset = "UTF-8">         </head>         <body>                 <canvas id="myCanvas" width="200" height="100" style="border: 5px double"></canvas>                 <script>                         var c = document.getElementById("myCanvas");                         var ctx = c.getContext(" CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 175 تاريخ : پنجشنبه 30 آذر 1396 ساعت: 23:15

Hi there, I want to test my "next-big-thing" idea of a mobile app. I have a certain budget and need to find a trusted software
development company. Can you advise any companies you personally trust?
CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 161 تاريخ : پنجشنبه 30 آذر 1396 ساعت: 23:15

Hi There, hoping someone can assist here... i have a list of records where i can Add, Update, Delete all working. I am trying to add a button next to the delete button where the function of it is that once clicked it updates the information in status column. the field when populated holds a confrmation code and then when the button is clicked i want it to update the information to show "paid" or "confirmed". so far i have the below but i can't get any variation of it to work. PHP Code: <?php     require 'database.php';     $id = null;           if ( !empty($_GET['id'])) {         $id = $_REQUEST['id'];     }           if ( !empty($_POST)) {         // keep track post values         $id = $_POST['id'];                CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 189 تاريخ : پنجشنبه 30 آذر 1396 ساعت: 23:15

I checked and it looks like cURL is enabled inside the php.ini file (I'm using XAMPP) and yet it's still not displaying anything. Same thing goes for file_get_contents. I simply get a blank web page as a result... Somebody has already tested this for me on their local network and it works so I'm really lost right now. PHP Code: <?php $auth = base64_encode("04d2ac7f76a0fbc0eee9dc5ef96b9259:dc70ffc7ad911236bc2e0822855e2d42"); $context = stream_context_create(['http' => ['header' => "Authorization: Basic $auth"]]); $homepage = file_get_contents("https://api.intrinio...?identifier=AA", false, $context ); $login = '04d2ac7f76a0fbc0eee9dc5ef96b9259'; $password = 'dc70ffc7ad911236bc2e0822855e2d42'; $url = 'https://api.intrinio...?identifier=AA'; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL,$url); curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC); curl_setopt($ch, CURLOPT_USERPWD, "$login:$password"); $result = curl_exec($ch); curl_close($ch); echo($result); CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 171 تاريخ : سه شنبه 28 آذر 1396 ساعت: 23:22

I am accessing data from .DBF file,but i am getting below error: Error: 2091
I really don`t know how solve this issue. Any ideas?
CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 146 تاريخ : سه شنبه 28 آذر 1396 ساعت: 23:22

Hi, I have already done my chat script (no voice) and its working fine. I was however considering adding the voice option but i am not familiar with voice coding principles at all. I assume that the voice option falls under client side scripting. Can anyone give me a resource direction as to where to start my research in either coding my own voice option or intigrating a pre-existing open source option. Im just not sure where to begin to teach myself how the voice option works in the background. Thanks so much :) PS My first attempt was to add it using a teamspeak link, but that is not working out well at all and is quite complicated for the users to setup and use as a site member, and also very difficult to integrate into the website itself. I suppose this would be a good place to start huh https://webrtc.org/ CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 167 تاريخ : سه شنبه 28 آذر 1396 ساعت: 23:22

I am working on a webpage with 3 camera images. I want to get them lined up next to each other in full page width, preferably without space in between. The code below just doesnt seem to get me a proper line-up, the 3rd image is ending up below the third. Is there some mod I need to doto get this done? Thanks Jeroen <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Webcams</title> <style type="text/CSS"> h2 { color:#4E632C; } #main { max-width:960px; margin:auto; position:relative; } #cam1 { width:440px; position:absolute; } #cam2 { margin-left:445px; min-height:250px; } #cam3 { margin-left:445px; min-height:250px; } </style> </head> <body> <div id="cam1"> <h2>Webcam 1</h2> <iframe src="http://192.168.1.81:8081/" height="400" wdth="400"></iframe> </div> <div id="cam2"> <h2>WebCam 2</h2> <iframe src="http://192.168.1.82 CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 258 تاريخ : سه شنبه 28 آذر 1396 ساعت: 23:22

Hello there. I have a problem attempting to log-in to a online forum from a mobile device (everything works OK using a PC). The website is Irish LEGO User Group - Index The problem occurs when I click on the Person icon at the top of the screen (right hand side). It opens a drop down menu with 'Guest' as default. When I select 'Login' from this menu nothing happens. To me it appears that the URL is not pointing anywhere and so selecting 'Login' sees nothing load. Here is a link to a screenshot showing the Person icon circled in red. Login does work from a mobile device from the Menu dropdown (see icon circled in green). When I press on the not working login link the following URL displays: PHP Code: http://www.lug.ie/forum/index.php#  When I press on the working login link the following URL displays: PHP Code: http://www.lug.ie/forum/index.php?action=login  Relevant code: I believe the code in question is on this file (I have copied it to an RTF file) http://www.lug.ie/forum/code.rtf and the relevant are conces Wireless login attempts. I did not write the code for the forum and although have fixed a number of other bugs this one stumps me. CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 185 تاريخ : سه شنبه 28 آذر 1396 ساعت: 23:22